home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / distutils / extension.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  7KB  |  208 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''distutils.extension
  5.  
  6. Provides the Extension class, used to describe C/C++ extension
  7. modules in setup scripts.'''
  8. __revision__ = '$Id: extension.py,v 1.19 2004/10/14 10:02:08 anthonybaxter Exp $'
  9. import os
  10. import string
  11. import sys
  12. from types import *
  13.  
  14. try:
  15.     import warnings
  16. except ImportError:
  17.     warnings = None
  18.  
  19.  
  20. class Extension:
  21.     '''Just a collection of attributes that describes an extension
  22.     module and everything needed to build it (hopefully in a portable
  23.     way, but there are hooks that let you be as unportable as you need).
  24.  
  25.     Instance attributes:
  26.       name : string
  27.         the full name of the extension, including any packages -- ie.
  28.         *not* a filename or pathname, but Python dotted name
  29.       sources : [string]
  30.         list of source filenames, relative to the distribution root
  31.         (where the setup script lives), in Unix form (slash-separated)
  32.         for portability.  Source files may be C, C++, SWIG (.i),
  33.         platform-specific resource files, or whatever else is recognized
  34.         by the "build_ext" command as source for a Python extension.
  35.       include_dirs : [string]
  36.         list of directories to search for C/C++ header files (in Unix
  37.         form for portability)
  38.       define_macros : [(name : string, value : string|None)]
  39.         list of macros to define; each macro is defined using a 2-tuple,
  40.         where \'value\' is either the string to define it to or None to
  41.         define it without a particular value (equivalent of "#define
  42.         FOO" in source or -DFOO on Unix C compiler command line)
  43.       undef_macros : [string]
  44.         list of macros to undefine explicitly
  45.       library_dirs : [string]
  46.         list of directories to search for C/C++ libraries at link time
  47.       libraries : [string]
  48.         list of library names (not filenames or paths) to link against
  49.       runtime_library_dirs : [string]
  50.         list of directories to search for C/C++ libraries at run time
  51.         (for shared extensions, this is when the extension is loaded)
  52.       extra_objects : [string]
  53.         list of extra files to link with (eg. object files not implied
  54.         by \'sources\', static library that must be explicitly specified,
  55.         binary resource files, etc.)
  56.       extra_compile_args : [string]
  57.         any extra platform- and compiler-specific information to use
  58.         when compiling the source files in \'sources\'.  For platforms and
  59.         compilers where "command line" makes sense, this is typically a
  60.         list of command-line arguments, but for other platforms it could
  61.         be anything.
  62.       extra_link_args : [string]
  63.         any extra platform- and compiler-specific information to use
  64.         when linking object files together to create the extension (or
  65.         to create a new static Python interpreter).  Similar
  66.         interpretation as for \'extra_compile_args\'.
  67.       export_symbols : [string]
  68.         list of symbols to be exported from a shared extension.  Not
  69.         used on all platforms, and not generally necessary for Python
  70.         extensions, which typically export exactly one symbol: "init" +
  71.         extension_name.
  72.       swig_opts : [string]
  73.         any extra options to pass to SWIG if a source file has the .i
  74.         extension.
  75.       depends : [string]
  76.         list of files that the extension depends on
  77.       language : string
  78.         extension language (i.e. "c", "c++", "objc"). Will be detected
  79.         from the source extensions if not provided.
  80.     '''
  81.     
  82.     def __init__(self, name, sources, include_dirs = None, define_macros = None, undef_macros = None, library_dirs = None, libraries = None, runtime_library_dirs = None, extra_objects = None, extra_compile_args = None, extra_link_args = None, export_symbols = None, swig_opts = None, depends = None, language = None, **kw):
  83.         self.name = name
  84.         self.sources = sources
  85.         if not include_dirs:
  86.             pass
  87.         self.include_dirs = []
  88.         if not define_macros:
  89.             pass
  90.         self.define_macros = []
  91.         if not undef_macros:
  92.             pass
  93.         self.undef_macros = []
  94.         if not library_dirs:
  95.             pass
  96.         self.library_dirs = []
  97.         if not libraries:
  98.             pass
  99.         self.libraries = []
  100.         if not runtime_library_dirs:
  101.             pass
  102.         self.runtime_library_dirs = []
  103.         if not extra_objects:
  104.             pass
  105.         self.extra_objects = []
  106.         if not extra_compile_args:
  107.             pass
  108.         self.extra_compile_args = []
  109.         if not extra_link_args:
  110.             pass
  111.         self.extra_link_args = []
  112.         if not export_symbols:
  113.             pass
  114.         self.export_symbols = []
  115.         if not swig_opts:
  116.             pass
  117.         self.swig_opts = []
  118.         if not depends:
  119.             pass
  120.         self.depends = []
  121.         self.language = language
  122.         if len(kw):
  123.             L = kw.keys()
  124.             L.sort()
  125.             L = map(repr, L)
  126.             msg = 'Unknown Extension options: ' + string.join(L, ', ')
  127.             if warnings is not None:
  128.                 warnings.warn(msg)
  129.             else:
  130.                 sys.stderr.write(msg + '\n')
  131.         
  132.  
  133.  
  134.  
  135. def read_setup_file(filename):
  136.     parse_makefile = parse_makefile
  137.     expand_makefile_vars = expand_makefile_vars
  138.     _variable_rx = _variable_rx
  139.     import distutils.sysconfig
  140.     TextFile = TextFile
  141.     import distutils.text_file
  142.     split_quoted = split_quoted
  143.     import distutils.util
  144.     vars = parse_makefile(filename)
  145.     file = TextFile(filename, strip_comments = 1, skip_blanks = 1, join_lines = 1, lstrip_ws = 1, rstrip_ws = 1)
  146.     extensions = []
  147.     while None:
  148.         line = file.readline()
  149.         if line is None:
  150.             break
  151.         
  152.         if _variable_rx.match(line):
  153.             continue
  154.         
  155.         if line[-1] == line[-1]:
  156.             pass
  157.         elif line[-1] == '*':
  158.             file.warn("'%s' lines not handled yet" % line)
  159.             continue
  160.         
  161.         line = expand_makefile_vars(line, vars)
  162.         words = split_quoted(line)
  163.         module = words[0]
  164.         ext = Extension(module, [])
  165.         append_next_word = None
  166.         for word in words[1:]:
  167.             if append_next_word is not None:
  168.                 append_next_word.append(word)
  169.                 append_next_word = None
  170.                 continue
  171.             
  172.             suffix = os.path.splitext(word)[1]
  173.             switch = word[0:2]
  174.             value = word[2:]
  175.             if suffix in ('.c', '.cc', '.cpp', '.cxx', '.c++', '.m', '.mm'):
  176.                 ext.sources.append(word)
  177.                 continue
  178.             None if switch == '-I' else equals == -1
  179.             if switch == '-U':
  180.                 ext.undef_macros.append(value)
  181.                 continue
  182.             if switch == '-C':
  183.                 ext.extra_compile_args.append(word)
  184.                 continue
  185.             if switch == '-l':
  186.                 ext.libraries.append(value)
  187.                 continue
  188.             if switch == '-L':
  189.                 ext.library_dirs.append(value)
  190.                 continue
  191.             if switch == '-R':
  192.                 ext.runtime_library_dirs.append(value)
  193.                 continue
  194.             if word == '-rpath':
  195.                 append_next_word = ext.runtime_library_dirs
  196.                 continue
  197.             if word == '-Xlinker':
  198.                 append_next_word = ext.extra_link_args
  199.                 continue
  200.             None if word == '-Xcompiler' else value
  201.             if suffix in ('.a', '.so', '.sl', '.o', '.dylib'):
  202.                 ext.extra_objects.append(word)
  203.                 continue
  204.             file.warn("unrecognized argument '%s'" % word)
  205.         
  206.     return extensions
  207.  
  208.